home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / extra / pro13 / strcpy.c < prev    next >
C/C++ Source or Header  |  1996-06-22  |  241b  |  18 lines

  1. /*
  2.     strcpy.C
  3.  
  4.     Copyright (C) 1993, Geoff Friesen B.Sc.
  5.     All rights reserved.
  6. */
  7.  
  8. #define    INCL_STRCPY
  9.  
  10. char *strcpy (char *dest, const char *src)
  11. {
  12.    char *temp = dest;
  13.  
  14.    while (*temp++ = *src++)
  15.       ;
  16.  
  17.    return dest;
  18. }